home *** CD-ROM | disk | FTP | other *** search
/ Tech Arsenal 1 / Tech Arsenal (Arsenal Computer).ISO / tek-02 / keep.zip / README.DOC < prev   
Text File  |  1991-12-19  |  2KB  |  56 lines

  1. Included are four files:
  2.  
  3.         KEEP.PAS
  4.         KEEP.EXE
  5.  
  6.  
  7.         MASSDEL.PAS
  8.         MASSDEL.EXE
  9.  
  10. KEEP will collect a list of file names (including wildcards) from the command
  11. line and delete all files not matching ANY of the files in the list.  KEEP
  12. without any parameters prints a brief help message.  KEEP will always prompt
  13. for confirmation before deleting a file unless told to do otherwise.  You
  14. can ask KEEP to show you a list of the files yet to be deleted.  You can also
  15. ask KEEP to show you the files being kept from deletion.
  16.  
  17. For example:
  18.  
  19.         keep *.pas *.bat *.lib
  20.                 or
  21.         keep -d *.pas *.bat *.lib     ; dangerous mode - no confirmation
  22.                 or
  23.         keep -s *.pas *.bat *.lib     ; silent mode with confirmation
  24.                 or
  25.         keep -s -d *.pas *.bat *.lib  ; silent/dangerous mode
  26.  
  27. MASSDEL works the same as the DOS DEL command except that multiple files
  28. can be specified on the command line.  Wildcards are accepted.  Confirmation
  29. is requested before any file is deleted unless you have specified otherwise.
  30. MASSDEL without any parameters prints a brief help message.
  31.  
  32. For example:
  33.  
  34.         massdel *.bak *.tmp *.bkp
  35.                 or
  36.         massdel -d *.bak *.tmp *.bkp
  37.                 or
  38.         massdel -s *.bak *.tmp *.bkp
  39.                 or
  40.         massdel -s -d *.bak *.tmp *.bkp
  41.  
  42.  
  43. Written by      Rick Owen
  44.                 (208) 523-1844
  45.  
  46. Written in Turbo Pascal V6.0.
  47.  
  48.  
  49. These programs carry no warranties either expressed or implied.  I 
  50. assume no liability of any kind [use at YOUR risk].  Any program 
  51. which deletes files is inherently dangerous and you should be 
  52. extremely careful when using either KEEP or MASSDEL.  You are free to 
  53. use both programs however you wish, and you may freely distribute 
  54. copies of either program, as long as you do not charge for it [connect 
  55. charges to BBSes are excluded from this restriction]. 
  56.